laravel where update query

27

laravel update from query -

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);

laravel db::query update -

 DB::table('user')->where('email', $userEmail)->update(array('member_type' => $plan));  

update query laravel -

$update = \DB::table('student') ->where('id', $data['id']) ->limit(1) ->update( [ 'name' => $data['name'], 'address' => $data['address'], 'email' => $data['email'], 'contactno' => $data['contactno'] ]); 

Comments

Submit
0 Comments